home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-19 | 1.2 KB | 47 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-94 by Apple Computer, Inc., all rights reserved.
- #ifndef _TYPSTITR_
- #define _TYPSTITR_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- //=====================================================================================
- // Classes defined in this interface
- //=====================================================================================
- interface ODTypeSetIterator;
-
- //=====================================================================================
- // Classes used by this interface
- //=====================================================================================
- interface ODTypeSet;
-
- //=====================================================================================
- // Class ODTypeSetIterator
- //=====================================================================================
-
- interface ODTypeSetIterator : ODObject
- {
- void InitODTypeSetIterator(in ODTypeSet typeSet);
-
- ODBoolean IsNotComplete();
- ODType First();
- ODType Next();
-
- #ifdef __SOMIDL__
- implementation
- {
- override:
- somUninit;
- releaseorder:
- InitODTypeSetIterator,
- IsNotComplete,
- First,
- Next;
- };
- #endif
-
- };
-
- #endif // _TYPSTITR_
-